home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / unixlib.lha / unix / src / abort.c < prev    next >
C/C++ Source or Header  |  1996-01-04  |  165b  |  12 lines

  1. #include "amiga.h"
  2. #include <signal.h>
  3.  
  4. extern void _close_all(void);
  5.  
  6. void __saveds abort(void)
  7. {
  8.     __chkabort();
  9.     _close_all();
  10.     kill(getpid(), SIGIOT);
  11. }
  12.